home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / pcw.zip / MAKFIL < prev    next >
Text File  |  1991-12-28  |  1KB  |  23 lines

  1. #***************************************************************
  2. #* File Id.                     MAKFIL.                        *
  3. #* Author.                      Stan Milam.                    *
  4. #*                                                             *
  5. #* Purpose:  The MAKE programs from Borland and Zortech do not *
  6. #* support recursion as a true UNIX-like MAKE will.  Only the  *
  7. #* Microsoft make utility, NMAKE, works as it should.  So I    *
  8. #* created this file which is executed from the main MAKEFILE  *
  9. #* when Borland's C or Zortech's C is used.                    *
  10. #* Yeah, I know, it's a hack, but all I ask is a MAKE utility  *
  11. #* that really works!                                          *
  12. #*                                                             *
  13. #***************************************************************
  14.  
  15. OBJ=pcwdemo.obj files.obj demos.obj demo_a.obj demo_b.obj demo_c.obj \
  16.     demo_d.obj demo_e.obj
  17.  
  18. .c.obj:
  19.        $(CC) -c -I..\pcw -mm $*.c
  20.  
  21. pcwdemo.exe: $(OBJ)
  22.        $(CC) -mm $(OBJ) ..\$(LB)
  23.